From 4d362d493d23f3a971bc551d995f5e23fea1c238 Mon Sep 17 00:00:00 2001 From: Mark Bergsma Date: Wed, 6 Apr 2005 17:37:55 +0000 Subject: [PATCH] Use wfDebug() instead of SquidUpdate::debug() --- includes/SquidUpdate.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/SquidUpdate.php b/includes/SquidUpdate.php index d971d0a63b..0e7968f21f 100644 --- a/includes/SquidUpdate.php +++ b/includes/SquidUpdate.php @@ -245,13 +245,13 @@ class SquidUpdate { $htcpTransID, $htcpSpecifier, 2); // Send out - debug( "Purging URL $url via HTCP\n" ); + wfDebug( "Purging URL $url via HTCP\n" ); socket_sendto( $conn, $htcpPacket, $htcpLen, 0, $wgHTCPMulticastAddress, $wgHTCPPort ); } } else { $errstr = socket_strerror( socket_last_error() ); - debug( "SquidUpdate::HTCPPurge(): Error opening UDP socket: $errstr\n" ); + wfDebug( "SquidUpdate::HTCPPurge(): Error opening UDP socket: $errstr\n" ); } wfProfileOut( $fname ); } -- 2.20.1